From: Tim Deegan Date: Mon, 26 Mar 2007 09:16:04 +0000 (+0000) Subject: [HVM] Fix comments X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15275^2~7 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=868b41cadfee9068a9144aa133979d31e791902b;p=xen.git [HVM] Fix comments Signed-off-by: Tim Deegan --- diff --git a/xen/arch/x86/hvm/pmtimer.c b/xen/arch/x86/hvm/pmtimer.c index 321f664124..e0c803910f 100644 --- a/xen/arch/x86/hvm/pmtimer.c +++ b/xen/arch/x86/hvm/pmtimer.c @@ -27,7 +27,7 @@ #define PM1a_EN_ADDR (ACPI_PM1A_EVT_BLK_ADDRESS + 2) #define TMR_VAL_ADDR (ACPI_PM_TMR_BLK_ADDRESS) -/* The interesting bit of the PM1a_STS register */ +/* The interesting bits of the PM1a_STS register */ #define TMR_STS (1 << 0) #define PWRBTN_STS (1 << 5) #define GBL_STS (1 << 8) diff --git a/xen/include/public/hvm/save.h b/xen/include/public/hvm/save.h index debb86a97d..c921b50a78 100644 --- a/xen/include/public/hvm/save.h +++ b/xen/include/public/hvm/save.h @@ -392,7 +392,7 @@ DECLARE_HVM_SAVE_TYPE(HPET, 12, struct hvm_hw_hpet); */ struct hvm_hw_pmtimer { - uint32_t tmr_val; /* PM_TMR_BLK.TMR_VAL: 24bit free-running counter */ + uint32_t tmr_val; /* PM_TMR_BLK.TMR_VAL: 32bit free-running counter */ uint16_t pm1a_sts; /* PM1a_EVT_BLK.PM1a_STS: status register */ uint16_t pm1a_en; /* PM1a_EVT_BLK.PM1a_EN: enable register */ };